home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / mhis020.zip / CRITCALL.MEX < prev    next >
Text File  |  1996-09-06  |  406b  |  16 lines

  1. #include <max.mh>
  2. #include "callers.mh"
  3.  
  4. int main () {
  5.   string: temp_string;
  6.   read_callers ();
  7.   input_str (temp_string, INPUT_LB_LINE, 0, 0,
  8.     COL_LBLUE + "Ignore callers who have not called at least this many times: " + COL_CYAN);
  9.   if (temp_string = "") {
  10.     callers.criteria.min_calls := 0;
  11.     }
  12.   else callers.criteria.min_calls := strtoi (temp_string);
  13.   write_callers ();
  14.   }
  15.  
  16.